home *** CD-ROM | disk | FTP | other *** search
-
- function switchproxy_update_notifyToggle(){
-
- try{
- var oPrefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService).getBranch("");
- oPrefs.setBoolPref("switchproxy.update.notify", !document.getElementById("switchproxy.update.notify").checked);
- }catch(err){}
-
- return true;
- }
-
- function switchproxy_update_install(){
- try{
- //Window Argument is update XPI
- if(window.arguments.length > 0 && typeof(window.arguments[0]) != 'undefined'){
-
- var aInstall = new Array();
- aInstall["SwitchProxy"] = window.arguments[0];
-
- InstallTrigger.install(aInstall, null);
- }
- //If no update XPI, redirect to download site
- else{
- window.open(gSwitchProxy_DownloadSite);
- }
- }catch(err){alert(switchproxy_getString("error.update") +"\n"+err)}
-
- return true;
- }